1) Create a program called "lists"
2) Your program should create a list named "animalNames"
3) Your program should ask your user to enter a animal name.
5) Your program should repeat asking your user for additional animal names until a total of 10 animal names have been entered
6) After a total of 10 animal names have been asked/entered into your list, ask the user to search for an animal name
7) Your program should then search the list for that animal name
8) If the name is found, your program should state the animal name searched for and return the position in the list. For example:
"Cat was found at position number 5 in the list"
If that animal name was not found your program should provide a message to that effect to the user